home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / Decoding.subproj / DecodeCell.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  443 b   |  32 lines

  1.  
  2. #import <appkit/Cell.h>
  3.  
  4. typedef enum _SuccessType_t {
  5.     NOT_DECODED,
  6.     DECODE_SUCCESSFUL,
  7.     DECODE_FAILED
  8. } SuccessType_t;
  9.  
  10.  
  11. @interface DecodeCell : Cell
  12. {
  13.     int articleIndex;
  14.     SuccessType_t decodeStatus;
  15. }
  16.  
  17. + (void) initialize;
  18.  
  19. - init;
  20.  
  21. - (int) articleIndex;
  22. - (void) setArticleIndex:(int)index;
  23.  
  24. - (SuccessType_t) decodeStatus;
  25. - (void) setDecodeStatus:(SuccessType_t)status;
  26.  
  27. - drawSelf:(const NXRect *)frameRect inView:controlView;
  28.  
  29. @end
  30.  
  31.  
  32.